Review: figures
- plot(x = __, y = ___, main = “__”, xlab = “__”, ylab = “__”)
- boxplot(x = __, main = “__”, xlab = “__”, ylab = “__”)
- hist(x = __, main = “__”, xlab = “__”, ylab = “__”)
- install.packages("ggplot2") #installs this package to your R
- library(ggplot2) #opens the package for use
- ggplot(__, aes()) + geom_point() + geom_smooth() + labs()
- geom_boxplot()
- geom_histogram()